home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr23 / dl203.zip / TAP.SCR < prev    next >
Text File  |  1995-02-22  |  913b  |  26 lines

  1. ; ────────────────────────────────────────────────────────────────────────
  2. ;  TERMINAL ID:  TAP                     REQUIRES RAP v2.00 or later!!
  3. ; ────────────────────────────────────────────────────────────────────────
  4. ;  This is the script file that can be used with RAP if you encounter
  5. ;  a host that only accepts TAP.  Keep in mind some hosts (very few)
  6. ;  do not allow you to send multiple pages during the same call.
  7. ;  If this is the case, the page server performance will be significantly
  8. ;  impaired.  (Best to call the paging provider and tell them to get
  9. ;  with the program.)
  10. ;
  11. ;  This file can be recreated via RAP by entering RAP /tap
  12. SENDLN #13
  13. WAIT 10,ID=
  14. SENDLN PG1
  15. WAIT 10,p
  16. ;  The loop structure is created here to allow for sending multiple pages
  17. LOOP
  18.   SEND #2
  19.   SENDLN {pager_number}
  20.   SENDLN {message}
  21.   SEND #3
  22.   SENDLN {csum}
  23.   WAIT 15,#6
  24.   SENDLN 7
  25. ENDLOOP
  26.